[$ # load our matching channel letter, defaulting with 0.
load_channels_by_letter( param('letter') || 0 );
my @channel_list = get_sorted_channels_list("title", "data");
# get the user's window target preference (which controls
# whether links should open up in the current or a new window.
my $link_target = get_setting( "user_link_target" );
# and display the HTML for each channel.
foreach my $channel (@channel_list) { to_browser(qq{
}) }
# and spit it out.
$OUT = send_to_browser;
$]
|